a1461fdee09cc406642e0e91fd82cbdb753abd34,src/org/jgroups/blocks/ReplCache.java,ReplCache,get,#K#,298

Before Change


        }

        // 2. Try the local cache
        Value<V> tmp=l2_cache.get(key);
        if(tmp != null)
            return tmp.getVal();

After Change


        }

        // 2. Try the local cache
        Cache.Value<Value<V>> val=l2_cache.getEntry(key);
        Value<V> tmp;
        if(val != null) {
            tmp=val.getValue();
            if(tmp !=null) {
                V real_value=tmp.getVal();